home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src890906.arc / SESSION.H < prev    next >
C/C++ Source or Header  |  1989-08-18  |  1KB  |  57 lines

  1. #ifndef    NULLSESSION
  2. #include <stdio.h>
  3. #include "global.h"
  4. #include "ftpcli.h"
  5. #include "telnet.h"
  6. #include "icmp.h"
  7. #include "ax25.h"
  8. #include "ax25tnc.h"
  9. #include "proc.h"
  10.  
  11. /* Session control structure; only one entry is used at a time */
  12. struct session {
  13.     int type;
  14. #define    FREE    0
  15. #define    TELNET    1
  16. #define    FTP    2
  17. #define    AX25TNC    3
  18. #define    FINGER    4
  19. #define    PING    5
  20. #define NRSESSION 6
  21.     char *name;    /* Name of remote host */
  22.     union {
  23.         struct ftpcli *ftp;
  24.         struct telnet *telnet;
  25.         struct ax25tnc *ax25;
  26.         struct proc *finger;
  27.         struct ping *ping;
  28.     } cb;
  29.     int s;            /* Network socket (control for FTP) */
  30.     struct mbuf *input;    /* Console input */
  31.     FILE *record;        /* Receive record file */
  32.     char *rfile;        /* Record file name */
  33.     FILE *upload;        /* Send file */
  34.     char *ufile;        /* Upload file name */
  35.     int ttymode;        /* Raw or cooked */
  36. };
  37. #define    NULLSESSION    (struct session *)0
  38.  
  39. extern char *Sestypes[];
  40. extern unsigned Nsessions;
  41. extern struct session *Sessions;
  42. extern struct session *Current;
  43. extern int Mode;
  44. #define    CMD_MODE    1    /* Command mode */
  45. #define    CONV_MODE    2    /* Converse mode */
  46.  
  47. /* In session.c: */
  48. void freesession __ARGS((struct session *sp));
  49. struct session *sessptr __ARGS((char *cp));
  50. struct session *newsession __ARGS((char *name,int type));
  51.  
  52. extern int16 Lport;
  53. #define    ALERT_EOF    1
  54.  
  55.  
  56. #endif    /* NULLSESSION */
  57.